Skip to main content

SimpleSpaceRegionInfo


BeaconCount

The amount of beacons in the region at the time of the scan. It is of the type number. It is read-only, it cannot be assigned to.


HasRings

Whether the region has planetary rings. It is of the type boolean. It is read-only, it cannot be assigned to.


Name

The name of the region. It is of the type string. It is read-only, it cannot be assigned to.


TidallyLocked

This value contains meaningless data for a space region, but is nonetheless present. It is of the type boolean. It is read-only, it cannot be assigned to.


Type

The type of the region. It is always the string Planet. It is read-only, it cannot be assigned to.

Luau Type

This is the luau type for SimpleSpaceRegionInfo. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

export type SimpleSpaceRegionInfo = {
read BeaconCount: number,
read Type: "Planet",
read Name: string,
read HasRings: boolean,
read SubType: never,
read TidallyLocked: boolean,
}